html/template.Template.text (field)

22 uses

	html/template (current package)
		escape.go#L33: 			t.text.Tree = nil
		escape.go#L41: 		t.Tree = t.text.Tree
		escape.go#L881: 		if _, err := tmpl.text.AddParseTree(t.Name(), t.Tree); err != nil {
		escape.go#L906: 	t := e.arbitraryTemplate().text.Lookup(name)
		template.go#L27: 	text *template.Template
		template.go#L77: 	t.text.Option(opt...)
		template.go#L104: 		if err := escapeTemplate(t, t.text.Root, t.Name()); err != nil {
		template.go#L124: 	return t.text.Execute(wr, data)
		template.go#L139: 	return tmpl.text.Execute(wr, data)
		template.go#L156: 	if tmpl.text.Tree == nil || tmpl.text.Root == nil {
		template.go#L159: 	if t.text.Lookup(name) == nil {
		template.go#L163: 		err = escapeTemplate(tmpl, tmpl.text.Root, name)
		template.go#L172: 	return t.text.DefinedTemplates()
		template.go#L191: 	ret, err := t.text.Parse(text)
		template.go#L207: 		tmpl.text = v
		template.go#L224: 	text, err := t.text.AddParseTree(name, tree)
		template.go#L252: 	textClone, err := t.text.Clone()
		template.go#L314: 		t.text.New(name),
		template.go#L328: 	return t.text.Name()
		template.go#L346: 	t.text.Funcs(template.FuncMap(funcMap))
		template.go#L356: 	t.text.Delims(left, right)